From: Ian Jackson Date: Mon, 12 Dec 2011 17:48:41 +0000 (+0000) Subject: libxl: make libxl__[v]log const-correct X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/%22bookmarks://%22Dat/%22http:/www.example.com/cgi/%22https:/%22bookmarks:/%22Dat?a=commitdiff_plain;h=b51f531bbae48aba4c8e342da3c492442c88e0ce;p=xen.git libxl: make libxl__[v]log const-correct Signed-off-by: Ian Jackson Acked-by: Ian Campbell Committed-by: Ian Jackson --- diff --git a/tools/libxl/libxl_internal.c b/tools/libxl/libxl_internal.c index aafd2bb4f1..9473eaf2f6 100644 --- a/tools/libxl/libxl_internal.c +++ b/tools/libxl/libxl_internal.c @@ -179,7 +179,7 @@ char *libxl__dirname(libxl__gc *gc, const char *s) void libxl__logv(libxl_ctx *ctx, xentoollog_level msglevel, int errnoval, const char *file, int line, const char *func, - char *fmt, va_list ap) + const char *fmt, va_list ap) { char *enomem = "[out of memory formatting log message]"; char *base = NULL; @@ -206,7 +206,7 @@ void libxl__logv(libxl_ctx *ctx, xentoollog_level msglevel, int errnoval, void libxl__log(libxl_ctx *ctx, xentoollog_level msglevel, int errnoval, const char *file, int line, const char *func, - char *fmt, ...) + const char *fmt, ...) { va_list ap; va_start(ap, fmt); diff --git a/tools/libxl/libxl_internal.h b/tools/libxl/libxl_internal.h index 0fedcd9bd6..12a668aef6 100644 --- a/tools/libxl/libxl_internal.h +++ b/tools/libxl/libxl_internal.h @@ -80,13 +80,13 @@ _hidden void libxl__logv(libxl_ctx *ctx, xentoollog_level msglevel, int errnoval, const char *file /* may be 0 */, int line /* ignored if !file */, const char *func /* may be 0 */, - char *fmt, va_list al) + const char *fmt, va_list al) __attribute__((format(printf,7,0))); _hidden void libxl__log(libxl_ctx *ctx, xentoollog_level msglevel, int errnoval, const char *file /* may be 0 */, int line /* ignored if !file */, const char *func /* may be 0 */, - char *fmt, ...) + const char *fmt, ...) __attribute__((format(printf,7,8))); /* these functions preserve errno (saving and restoring) */